Back to index

CL-Markdown

Simple block on one line:

foo

And nested without indentation:

foo
bar

Markdown

Simple block on one line:

foo
And nested without indentation:
foo
bar

HTML Difference

Insert: 1, Delete: 1, Replace 0

Simple block on one line:

foo

And nested without indentation: indentation:

foo
bar

HTML from CL Markdown

<p>
Simple block on one line:</p>

<div>
foo</div>

<p>
And nested without indentation:</p>

<div>

<div>

<div>
foo</div>

</div>

<div>
bar</div>

</div>

Original source

Simple block on one line:

<div>
foo</div>


And nested without indentation:

<div>

<div>

<div>

foo
</div>

</div>

<div>
bar</div>

</div>